home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
c
/
tctutor2.zip
/
CHAROUT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1987-07-04
|
519b
|
19 lines
/* Chapter 10 - Program 2 */
#include "stdio.h"
main()
{
FILE *point;
char others[35];
int indexer,count;
strcpy(others,"Additional lines.");
point = fopen("tenlines.txt","a"); /* open for appending */
for (count = 1;count <= 10;count++) {
for (indexer = 0;others[indexer];indexer++)
putc(others[indexer],point); /* output a single character */
putc('\n',point); /* output a linefeed */
}
fclose(point);
}